@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

body {
  /* background-image: url("https://i.ytimg.com/vi/QcdpWhNNyVk/maxresdefault.jpg");
    background-size: cover; */
  display: none;
}

#root {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#root .app {
  margin-top: 15vh;
  width: 40vw;
  height: 55vh;
  background: #FAFAFA;
}

#root .app nav {
  background: #103043;
}

#root .app nav .brand-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: .5vh;
}

#root .app nav .brand-logo img {
  height: 85%;
}

#root .app nav #logout {
  font-weight: 600;
  border-radius: 5px;
  background: none;
  border: 1px solid #fff;
}

#root .app #routes {
  width: 100%;
  height: 87%;
}

#root .app #routes #route-1 {
  width: 100%;
  height: 100%;
}

#root .app #routes #route-1 .login-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#root .app #routes #route-1 .login-wrapper .login {
  width: 60%;
  height: 70%;
}

#root .app #routes #route-1 .login-wrapper .login a {
  width: 100%;
  background: none;
  border: 1px solid #103043;
  color: #103043;
}

#root .app #routes #route-1 .login-wrapper .login header {
  font-weight: 600;
  font-size: 1.5rem;
}

#root .app #routes #route-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

#root .app #routes #route-2 .products {
  margin-top: 3vh;
  padding: 1vh;
  display: -ms-grid;
  display: grid;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-grid-columns: (31%)[3];
      grid-template-columns: repeat(3, 31%);
  grid-auto-rows: 40vh;
  width: 90%;
  grid-gap: 2.5vh;
  height: 45vh;
}

#root .app #routes #route-2 .products .product {
  position: relative;
  border-radius: 5px;
  background: #fff;
}

#root .app #routes #route-2 .products .product img {
  border-radius: 5px 5px 0 0;
  width: 100%;
}

#root .app #routes #route-2 .products .product header {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

#root .app #routes #route-2 .products .product .list-wrapper {
  margin-top: 2vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-left: 1.5vh;
}

#root .app #routes #route-2 .products .product .list-wrapper ul {
  font-weight: 600;
}

#root .app #routes #route-2 .products .product .list-wrapper ul li {
  margin-top: 1vh;
}

#root .app #routes #route-2 .products .product .list-wrapper ul li span {
  font-weight: 500;
}

#root .app #routes #route-2 .products .product .list-wrapper ul li span.seller {
  color: #007CFF;
}

#root .app #routes #route-2 .products .product .footer {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  bottom: 0;
  height: 5vh;
  background: #007CFF;
  border-radius: 0 0 5px 5px;
}

#root .app #routes #route-2 .products .product .footer a {
  margin: 1vh;
  background: none;
  border: 1px solid #fff;
  border-radius: 5px;
}

#root .app #routes #route-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
}

#root .app #routes #route-3 .create-product {
  width: 70%;
  height: 75%;
}

#root .app #routes #route-3 .create-product a {
  background: none;
  border: 1px solid #103043;
  color: #103043;
}

#root .app #routes #route-3 .create-product header {
  font-weight: 600;
  font-size: 1.5rem;
}

::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: transparent;
}

::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
/*# sourceMappingURL=style.css.map */